cons
list<n> (elt0 ... elt<n-1>) => list list (elt0 ... elt<n-1> more-elts) => list For some small N, we have fixed-arg versions of List. For larger lists, we pass in additional elements in a stack TN (possibly required to be on stack top). List* is similar.
These VOPs implement the corresponding functions:
These VOPs set the car or cdr of a cons:
These VOPs implement the assoc and member functions with test
functions of eql and eq:
getf implements the corresponding function, while putf is used
to implement its setf-inverse. putf returns the new value for the list so
that it may stored back into the place.